home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_asm
/
sparc
/
t1.s
< prev
next >
Wrap
Text File
|
1992-01-28
|
395b
|
34 lines
!
! A string copying program. Nothing unusual here.
!
.seg "text"
save %sp, -96, %sp
clr %o0
set str, %o0
set out, %o1
call _bcopy
mov 24, %o2
mov 17,%o0
mov 1, %g1
ta 0
nop
L1:
inc %o0
stb %o4,[%o1]
inc %o1
_bcopy:
deccc %o2
bge,a L1
ldub [%o0], %o4
retl
nop
.seg "data"
str:
.asciz "this is a sample string"
.seg "bss"
out:
.skip 30